comma separated values - definitie. Wat is comma separated values
Diclib.com
Woordenboek ChatGPT
Voer een woord of zin in in een taal naar keuze 👆
Taal:

Vertaling en analyse van woorden door kunstmatige intelligentie ChatGPT

Op deze pagina kunt u een gedetailleerde analyse krijgen van een woord of zin, geproduceerd met behulp van de beste kunstmatige intelligentietechnologie tot nu toe:

  • hoe het woord wordt gebruikt
  • gebruiksfrequentie
  • het wordt vaker gebruikt in mondelinge of schriftelijke toespraken
  • opties voor woordvertaling
  • Gebruiksvoorbeelden (meerdere zinnen met vertaling)
  • etymologie

Wat (wie) is comma separated values - definitie

FILE FORMAT USED TO STORE DATA
.csv; Comma delimited; Comma separated values; Comma Separated Values; Comma-Separated Values; Comma separated lists; Comma-separated list; Comma seperated values; Comma separated list; Comma-seperated values; Comma-separated value; CSV (file format); CSV file; CSV-1203; Comma Separated Value; Comma separated value; COMMA-SEPARATED VALUES; Csv-schema; Comma delimited format; Text/csv; Csv file; Csv files; CSV data

comma separated values         
<file format> (CSV) A file format used as a portable representation of a database. Each line is one entry or record and the fields in a record are separated by commas. Commas may be followed by arbitrary space and/or tab characters which are ignored. If field includes a comma, the whole field must be surrounded with double quotes. (1995-05-06)
tab-separated values         
TEXT FILE FORMAT
.tsv; Tab separated values; Tab delimited; Tab-delimited; Tabulator-separated values; .tab; Tsv; Tab-separated value
<file format> (TSV) A file format used as a portable representation of a database. Each line represents one entry or record; and in every line, each field is separated from the next by a tab character (HT). Compare CSV. (2001-03-16)
TSV         
TEXT FILE FORMAT
.tsv; Tab separated values; Tab delimited; Tab-delimited; Tabulator-separated values; .tab; Tsv; Tab-separated value

Wikipedia

Comma-separated values

A comma-separated values (CSV) file is a delimited text file that uses a comma to separate values. Each line of the file is a data record. Each record consists of one or more fields, separated by commas. The use of the comma as a field separator is the source of the name for this file format. A CSV file typically stores tabular data (numbers and text) in plain text, in which case each line will have the same number of fields.

The CSV file format is not fully standardized. Separating fields with commas is the foundation, but commas in the data or embedded line breaks have to be handled specially. Some implementations disallow such content while others surround the field with quotation marks, which yet again creates the need for escaping if quotation marks are present in the data.

The term "CSV" also denotes several closely-related delimiter-separated formats that use other field delimiters such as semicolons. These include tab-separated values and space-separated values. A delimiter guaranteed not to be part of the data greatly simplifies parsing.

Alternative delimiter-separated files are often given a ".csv" extension despite the use of a non-comma field separator. This loose terminology can cause problems in data exchange. Many applications that accept CSV files have options to select the delimiter character and the quotation character. Semicolons are often used instead of commas in many European locales in order to use the comma as the decimal separator and, possibly, the period as a decimal grouping character.